home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / rc-1.000 / rc-1 / rc-1.5-linux / jbwrap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-22  |  275 b   |  11 lines

  1. /* certain braindamaged environments don't define jmp_buf as an array, so... */
  2.  
  3. struct Jbwrap {
  4.     jmp_buf j;
  5. };
  6.  
  7. extern Jbwrap slowbuf; /* for getting out of interrupts while performing slow i/o on BSD */
  8.  
  9. extern int setjmp(jmp_buf);
  10. /* extern void longjmp(jmp_buf, int); */
  11.